module.exports = {
    getAll: (req, res, next) => {
        throw new Error('Not implemented');
    },
    getOne: (req, res, next) => {
        throw new Error('Not implemented');
    },
    create: (req, res, next) => {
        throw new Error('Not implemented');
    },
    update: (req, res, next) => {
        throw new Error('Not implemented');
    },
    delete: (req, res, next) => {
        throw new Error('Not implemented');
    }
};
